type bytes.readOp
9 uses
bytes (current package)
buffer.go#L23: lastRead readOp // last read operation, so that Unread* can work correctly.
buffer.go#L30: type readOp int8
buffer.go#L35: opRead readOp = -1 // Any other read operation.
buffer.go#L36: opInvalid readOp = 0 // Non-read operation.
buffer.go#L37: opReadRune1 readOp = 1 // Read rune of size 1.
buffer.go#L38: opReadRune2 readOp = 2 // Read rune of size 2.
buffer.go#L39: opReadRune3 readOp = 3 // Read rune of size 3.
buffer.go#L40: opReadRune4 readOp = 4 // Read rune of size 4.
buffer.go#L387: b.lastRead = readOp(n)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |